home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-05-05 | 623 b | 23 lines | [TEXT/RLAB] |
- min:
-
- Synopsis: Compute the minimum value(s) in a matrix or two matrices.
-
- Syntax: min ( A )
- min ( A , B )
-
- Description:
-
- Min returns the minimum value(s) contained in the matrix A. If
- the argument is a vector, then the smallest value is returned.
- If A is a MxN matrix, then a row-vector of N columns is
- returned containing the minimum value from each column of A.
-
- If min is used with two arguments, then min returns a matrix
- the same size as A and B filled with the smallest elements
- from A and B.
-
- When matrix elements are complex the absolute value is used
- for comparison purposes.
-
- See Also: mini, max, maxi
-